home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 2000 January / Macworld (2000-01).dmg / Shareware World / Icon Utilities / IconMacher 1.5.4 / User Contributions / Laine Lee / disk image script
Text File  |  1999-10-23  |  1KB  |  29 lines

  1. Script for IconMacher to use on read-write disk image
  2. Date: Fri, 3 Sep 1999
  3. From: Laine Lee <LLee@utsa.edu>
  4.  
  5.  
  6. Here's a change that I made to the icon arranging script that allows it to
  7. arrange the icon output of IconMacher on a read-write Disk Copy disk image.
  8. The image can then be converted to read-only compressed or self-mounting to
  9. preserve the icon placement.
  10.  
  11. This is the beginning of a script that works for an image of a folder called
  12. "myicons" containing the icon output of IconMacher. The name of the image is
  13. "myicons.img" and it was created as read-write. The image must be mounted
  14. before running the script. No other part of the script was changed.
  15.  
  16.  
  17. property myPath : "myicons:"
  18.  
  19. tell application "Finder"
  20.         open container window of folder myPath
  21.         activate
  22.         set i to 32 --incrementer
  23.         set s to 10 --left edge of first icon
  24.         set t to 30 --top edge of first icon    
  25.         set zoomed of container window of folder myPath to true
  26.         select disk myPath
  27.         open selection
  28. end tell
  29.